stack-oriented - определение. Что такое stack-oriented
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое stack-oriented - определение

PROGRAMMING PARADIGM THAT RELIES ON A STACK MACHINE MODEL
Stack-based; Stack-based language; Stack language; Stack-oriented language; Stacked based programming; Stack-based algorithm example; Stack-oriented programming language; Stack-oriented programming languages
  • 220px
Найдено результатов: 668
Call stack         
  • green}}), which is the currently executing routine
STACK DATA STRUCTURE THAT STORES INFORMATION ABOUT THE ACTIVE SUBROUTINES OF A COMPUTER PROGRAM
Stack pointer; Stack frame; Frame pointer; Activation record; Stack unwinding; Function stack; Call Stack; Run-time stack; Control stack; Process stack; Runtime stack; Framepointer; Callstack; CallStack; Call frame; Call chain; Display register; Access link; Mark pointer; Return pointer; Callstacks; Activation frame; Outgoing arguments area; Callout area; Call stack inspection; Call Frame Information; Stack pointe
In computer science, a call stack is a stack data structure that stores information about the active subroutines of a computer program. This kind of stack is also known as an execution stack, program stack, control stack, run-time stack, or machine stack, and is often shortened to just "the stack".
stack frame         
  • green}}), which is the currently executing routine
STACK DATA STRUCTURE THAT STORES INFORMATION ABOUT THE ACTIVE SUBROUTINES OF A COMPUTER PROGRAM
Stack pointer; Stack frame; Frame pointer; Activation record; Stack unwinding; Function stack; Call Stack; Run-time stack; Control stack; Process stack; Runtime stack; Framepointer; Callstack; CallStack; Call frame; Call chain; Display register; Access link; Mark pointer; Return pointer; Callstacks; Activation frame; Outgoing arguments area; Callout area; Call stack inspection; Call Frame Information; Stack pointe
Stack (geology)         
  • The Duncansby Stacks at [[Duncansby Head]], [[Scotland]]
  • [[Pizzomunno]], a white limestone stack in [[Vieste]], Italy
  • Stacks (''[[Rauk]]s'') at the island of [[Fårö]] east of the mainland of [[Sweden]]
GEOLOGICAL LANDFORM CONSISTING OF A STEEP AND OFTEN VERTICAL COLUMN OR COLUMNS OF ROCK
Stack (Geology); Sea stack; Sea Stack; Sea-stack; Seastack; Raukar; Kekur; Kekurs; Sea stacks
A stack or sea stack is a geological landform consisting of a steep and often vertical column or columns of rock in the sea near a coast, formed by wave erosion. Stacks are formed over time by wind and water, processes of coastal geomorphology.
stack pointer         
  • green}}), which is the currently executing routine
STACK DATA STRUCTURE THAT STORES INFORMATION ABOUT THE ACTIVE SUBROUTINES OF A COMPUTER PROGRAM
Stack pointer; Stack frame; Frame pointer; Activation record; Stack unwinding; Function stack; Call Stack; Run-time stack; Control stack; Process stack; Runtime stack; Framepointer; Callstack; CallStack; Call frame; Call chain; Display register; Access link; Mark pointer; Return pointer; Callstacks; Activation frame; Outgoing arguments area; Callout area; Call stack inspection; Call Frame Information; Stack pointe
<architecture, programming> (SP) A register or variable pointing to the top of a stack. (2004-11-08)
Protocol stack         
IMPLEMENTATION OF A COMPUTER NETWORKING PROTOCOL SUITE
Protocol suite; Network stack; Network protocol stack; Protocol suites; Protocol hierarchy; Communications stack; Networking stack; Layered protocol; Protocol family; Signalling stack; Protocol layering; Spanning Layer; Spanning layer
The protocol stack or network stack is an implementation of a computer networking protocol suite or protocol family. Some of these terms are used interchangeably but strictly speaking, the suite is the definition of the communication protocols, and the stack is the software implementation of them.
activation record         
  • green}}), which is the currently executing routine
STACK DATA STRUCTURE THAT STORES INFORMATION ABOUT THE ACTIVE SUBROUTINES OF A COMPUTER PROGRAM
Stack pointer; Stack frame; Frame pointer; Activation record; Stack unwinding; Function stack; Call Stack; Run-time stack; Control stack; Process stack; Runtime stack; Framepointer; Callstack; CallStack; Call frame; Call chain; Display register; Access link; Mark pointer; Return pointer; Callstacks; Activation frame; Outgoing arguments area; Callout area; Call stack inspection; Call Frame Information; Stack pointe
<compiler> (Or "data frame", "stack frame") A data structure containing the variables belonging to one particular scope (e.g. a procedure body), as well as links to other activation records. Activation records are usually created (on the stack) on entry to a block and destroyed on exit. If a procedure or function may be returned as a result, stored in a variable and used in an outer scope then its activation record must be stored in a heap so that its variables still exist when it is used. Variables in the current scope are accessed via the frame pointer which points to the current activation record. Variables in an outer scope are accessed by following chains of links between activation records. There are two kinds of link - the static link and the dynamic link. (1995-03-07)
frame pointer         
  • green}}), which is the currently executing routine
STACK DATA STRUCTURE THAT STORES INFORMATION ABOUT THE ACTIVE SUBROUTINES OF A COMPUTER PROGRAM
Stack pointer; Stack frame; Frame pointer; Activation record; Stack unwinding; Function stack; Call Stack; Run-time stack; Control stack; Process stack; Runtime stack; Framepointer; Callstack; CallStack; Call frame; Call chain; Display register; Access link; Mark pointer; Return pointer; Callstacks; Activation frame; Outgoing arguments area; Callout area; Call stack inspection; Call Frame Information; Stack pointe
A pointer to the current activation record in an implementation of a block structured language. (1994-10-20)
Solution stack         
SET OF SOFTWARE SUBSYSTEMS OR COMPONENTS NEEDED TO CREATE A COMPLETE PLATFORM
Software stack; Technology stack; Web stack; WINS (solution stack); GLASS (software bundle); LEAP (software bundle); Solutions stack; Full-stack developer
In computing, a solution stack or software stack is a set of software subsystems or components needed to create a complete platform such that no additional software is needed to support applications. Applications are said to "run on" or "run on top of" the resulting platform.
protocol stack         
IMPLEMENTATION OF A COMPUTER NETWORKING PROTOCOL SUITE
Protocol suite; Network stack; Network protocol stack; Protocol suites; Protocol hierarchy; Communications stack; Networking stack; Layered protocol; Protocol family; Signalling stack; Protocol layering; Spanning Layer; Spanning layer
<protocol> A layered set of protocols which work together to provide a set of network functions. Each intermediate protocol layer uses the layer below it to provide a service to the layer above. The OSI seven layer model is an attempt to provide a standard framework within which to describe protocol stacks. (1997-12-07)
Seán Stack         
IRISH HURLER
Sean Stack
Seán Stack (born 1953) is an Irish retired hurler who played as a centre-back for the Clare senior team.

Википедия

Stack-oriented programming

Stack-oriented programming is a programming paradigm which relies on a stack machine model for passing parameters. Stack-oriented languages operate on one or more stacks, each of which may serve a different purpose. Programming constructs in other programming languages need to be modified for use in a stack-oriented system. Most stack-oriented languages operate in postfix or Reverse Polish notation. Any arguments or parameters for a command are stated before that command. For example, postfix notation would be written 2, 3, multiply instead of multiply, 2, 3 (prefix or Polish notation), or 2 multiply 3 (infix notation). The programming languages Forth, Factor, RPL, PostScript, BibTeX style design language and many assembly languages fit this paradigm.

Stack-based algorithms consider data, by utilising one piece of data from atop the stack, and returning data back atop the stack. The need for stack manipulation operators, allow for the stack to manipulate data. To emphasise the effect of a statement, a comment is used showing the top of the stack before and after the statement. This is known as the stack effect diagram.

Postscript stacks consider separate stacks for additional purposes. This considers variables, dictionaries, procedures, anatomy of some typical procedures, control and flow. The analysis of the language model allows expressions and programs to be interpreted simply and theoretically.